home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 031a / winlava.zip / LAVA.RC < prev    next >
Text File  |  1991-09-10  |  3KB  |  93 lines

  1. #include "windows.h"
  2. #include "lava.h"
  3.  
  4. /*
  5.      (C) Copyright Microsoft Corp. 1991.  All rights reserved.
  6.  
  7.      You have a royalty-free right to use, modify, reproduce and 
  8.      distribute the Sample Files (and/or any modified version) in 
  9.      any way you find useful, provided that you agree that 
  10.      Microsoft has no warranty obligations or liability for any 
  11.      Sample Application Files which are modified. 
  12.  */
  13.  
  14. AppIcon  ICON   lava.ico
  15.  
  16. ABOUTBOX DIALOG 22, 17, 144, 90
  17. STYLE WS_POPUP | WS_DLGFRAME
  18. BEGIN
  19.     CTEXT "Microsoft Windows 3.0"        -1,  0,  4, 144, 8
  20.     CTEXT "Lava - Flow Simulator"        -1,  0, 14, 144, 8
  21.     CTEXT "Version 1.00"            -1, 38, 34, 64, 8
  22.     CTEXT "Copyright ⌐ 1990, semi-Bogus Software"    -1,  5, 47,132, 9
  23.     ICON  "AppIcon"                -1,  9, 23,  0, 0
  24.     DEFPUSHBUTTON "Ok"                  IDOK, 53, 59, 32, 14, WS_GROUP
  25.     CTEXT "permission to freely distribute"    -1, 0, 80, 144, ,8
  26. END
  27.  
  28. TEXTDLG DIALOG LOADONCALL MOVEABLE DISCARDABLE 12, 19, 160, 33
  29. STYLE WS_DLGFRAME | WS_POPUP
  30. BEGIN
  31.        CONTROL "" ID_EDIT, "edit", ES_LEFT | WS_BORDER | WS_TABSTOP | WS_CHILD, 7, 15, 116, 12
  32.        CONTROL "Ok" IDOK, "button", BS_DEFPUSHBUTTON | WS_TABSTOP | WS_CHILD, 128, 1, 28, 14
  33.        CONTROL "Cancel" IDCANCEL, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 128, 17, 28, 14
  34. END
  35.  
  36.  
  37. AppMenu menu
  38. begin
  39.     POPUP "!"
  40.     begin
  41.         MENUITEM "Go!"              , MENU_GO
  42.         POPUP    "NumCenters"
  43.         begin
  44.         MENUITEM "4"       , MENU_NUMCENTERS + 4
  45.         MENUITEM "8"       , MENU_NUMCENTERS + 8
  46.         MENUITEM "12"       , MENU_NUMCENTERS + 12
  47.         MENUITEM "16"       , MENU_NUMCENTERS + 16
  48.         MENUITEM "20"       , MENU_NUMCENTERS + 20
  49.         MENUITEM "24"       , MENU_NUMCENTERS + 24
  50.         MENUITEM "28"       , MENU_NUMCENTERS + 28
  51.         MENUITEM "32"       , MENU_NUMCENTERS + 32
  52.         end
  53.         POPUP    "NumColors"
  54.         begin
  55.             MENUITEM "4"            , MENU_NUMCOLORS + 4
  56.             MENUITEM "8"            , MENU_NUMCOLORS + 8
  57.             MENUITEM "16"           , MENU_NUMCOLORS + 16
  58.             MENUITEM "32"           , MENU_NUMCOLORS + 32
  59.             MENUITEM "64"           , MENU_NUMCOLORS + 64
  60.             MENUITEM "128"          , MENU_NUMCOLORS + 128
  61.         MENUITEM "236"        , MENU_NUMCOLORS + 236
  62.         MENUITEM "256"        , MENU_NUMCOLORS + 256
  63.         end
  64.         POPUP    "BandScale"
  65.         begin
  66.         MENUITEM "1"        , MENU_BANDSCALE + 1
  67.         MENUITEM "2"        , MENU_BANDSCALE + 2
  68.         MENUITEM "4"        , MENU_BANDSCALE + 4
  69.         MENUITEM "8"        , MENU_BANDSCALE + 8
  70.         MENUITEM "16"        , MENU_BANDSCALE + 16
  71.         end
  72.     POPUP     "Options"
  73.         begin
  74.         MENUITEM "Satin"        , MENU_SATIN
  75.             MENUITEM "Cross Fade"       , MENU_CROSSFADE
  76.             MENUITEM "Fast Cycle"       , MENU_FASTCYCLE
  77.             MENUITEM "Color Cycle"      , MENU_COLORCYCLE
  78.             MENUITEM "Palette"          , MENU_PALETTE
  79.             MENUITEM "SetDIBits"        , MENU_SETDIBITS
  80.             MENUITEM "Pal Colors"       , MENU_PALCOLORS
  81.             MENUITEM "NoCollapse"       , MENU_NOCOLLAPSE
  82.         end
  83.         POPUP "Edit"
  84.         begin
  85.             MENUITEM "Paste"        , MENU_PASTE
  86.             MENUITEM "Copy"         , MENU_COPY
  87.         end
  88.         MENUITEM SEPARATOR
  89.         MENUITEM "About..."         , MENU_ABOUT
  90.         MENUITEM "Exit"             , MENU_EXIT
  91.     end
  92. end
  93.